Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
| 29 | 30 | 31 |
Tags
- NERF
- pointcloud
- roslaunch
- 3dmapping
- usbcamera
- differentiablerendering
- rostopics
- catkinworkspace
- rosnoetic
- realtimerendering
- imageprocessing
- tilebasedrasterizer
- opencv
- sensorfusion
- vectorcalculus
- Slam
- covariancematrix
- 3dgaussiansplatting
- alphablending
- rospackages
- raspberrypi
- vectorfields
- gaussiansplatting
- turtlebot3
- turtlebot
- adaptivedensitycontrol
- Ros
- electromagnetism
- LIDAR
- ComputerVision
Archives
- Today
- Total
목록Python (2)
Wiredwisdom
1. Roscore roscore 2. Bingupexport TURTLEBOT3_MODEL=${TB3_MODEL}roslaunch turtlebot3_bringup turtlebot3_robot.launch 3. usb_cameraroslaunch turtlebot3_custom usb_cam.launch 4. SLAMexport TURTLEBOT3_MODEL=burgerroslaunch turtlebot3_slam turtlebot3_slam.launch rosrun sensor_fusion Puppy.pyrosrun sensor_fusion yolo_visualization.py 코드 #!/usr/bin/env python3import rospyfrom sensor_msgs.msg import..
Autonomous Driving/Turtlebot3
2024. 8. 28. 17:41
def __init__(self): rospy.init_node('camera_lidar_fusion', anonymous=True) # Initialize subscribers and publishers self.bridge = CvBridge() self.image_sub = rospy.Subscriber("/camera/image_raw", Image, self.image_callback) self.pc_sub = rospy.Subscriber("/camera/depth/points", PointCloud2, self.pc_callback) self.fusion_pub = rospy.Publisher("/fus..
Autonomous Driving/Turtlebot3
2024. 7. 8. 21:31