Тёмный
No video :(

Robot navigation using only an RGBD camera 

robot mania
Подписаться 4,6 тыс.
Просмотров 10 тыс.
50% 1

In this tutorial I explain how to do navigation using only a RealSense camera.
ROS version: ROS2 Foxy
The project is here:
drive.google.c...

Опубликовано:

 

25 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 32   
@rekindle9
@rekindle9 Год назад
clear pronounciation, clear knowledge and logic display, no blabbering. love the work!
@robotmania8896
@robotmania8896 Год назад
Hi ZhenQi Liu! Thank you!
@timandersen8030
@timandersen8030 10 месяцев назад
Great video! Are there any other cameras cheaper than RealSense for mapping?
@robotmania8896
@robotmania8896 10 месяцев назад
Hi Tim Andersen! Thanks for watching my video! For example, some Luxonis cameras are cheaper then realsense D435. But I think realsense cameras are the best in terms of amount of information available and reliability.
@RSC2194
@RSC2194 Год назад
nice video, buy you can also use just one lidar to perform slam without other sensors
@robotmania8896
@robotmania8896 Год назад
Hi RSC2194! Thanks for watching my video! Yes, the most common way to do slam is by using a LIDAR. I introduced RGBD camera as an alternative solution.
@omarsid6900
@omarsid6900 9 месяцев назад
Great work! Do you have any tips or ideas on how to improve the performance of these camera-based systems without using any sensors other than cameras? is adding more cameras gonna do the trick or do we need to use different methods?
@robotmania8896
@robotmania8896 9 месяцев назад
Hi Omer Sayed! Thanks for watching my video! Disadvantage of camera is that is has narrower and shorter range compared to Lidar. If you increase number of cameras, you will be able to compensate narrow angle, but the system will be more complex and expensive. So, I think that for real world application, combination of a Lidar and a camera is optimal.
@NiranjanSujay
@NiranjanSujay 7 месяцев назад
There is a module not found error in the file that you have given! could you check the error and reupload the file, I tried solving it but there are more issues importing issues, saying that directory mismatch! I would appreciate it if you could check it! to be precise it's from the file gazebo_sim_launch_vo.py file
@NiranjanSujay
@NiranjanSujay 7 месяцев назад
I see that you have mentioned how the robot navigates but the thing is, can you mention which part of code does all of the things you mentioned... can you explain to me where and which part of code does the below points mentioned are present - 1) Detect features from the first available RGB image using FAST algorithm. 2) Track the detected features in the next available RGB image using Lucas-Kanade Optical Flow Algorithm. 3) Create the 3D pointcloud (of the tracked/detected feature points) of the latest two available RGB image with the help of their depth image . 4) Estimate the motion between two consecutive 3D pointclouds. 5) Concatenate the Rotation and Translational information to obtain the predicted path.
@NiranjanSujay
@NiranjanSujay 7 месяцев назад
For the case of create 3d point cloud, what did you put as intrinsic parameters
@robotmania8896
@robotmania8896 7 месяцев назад
Hi Niranjan Sujay! Thanks for watching my video! Sorry for the late response. I currently have some issues with my Ubuntu20 environment, so I cannot check the yaml file right now. But if there is a bug, I will fix it. Also, regarding rtabmap code, you can find it here. Please check the code for details. github.com/introlab/rtabmap_ros/tree/ros2
@nobodygg7314
@nobodygg7314 10 месяцев назад
Hi, I wanted to calculate height and width of the object detected using RealSense 455d. My yolov8 model provides me with a bounding box for particular object. I wanted to find its height and width using depth information, if you know how to do this please share. Also, is there any method to reduce depth noise?
@robotmania8896
@robotmania8896 10 месяцев назад
Hi Nobody GG! Thanks for watching my video! Using perspective projection transformation, you can calculate coordinates of bounding box in camera (real world) coordinate system. So, if we assume that object height is about the same as bounding box height, you can estimate object height. Here is the link to the video in which I explain the theory. Unfortunately, I don’t know how to reduce depth noise. I assume that the noise inherently comes from mechanical structure of the depth camera. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE---81OoXMvlw.html
@nobodygg7314
@nobodygg7314 10 месяцев назад
@@robotmania8896 Thanks for reply. I will try to implement as you shown in that video.
@balajibull
@balajibull Год назад
Thanks for the video. Navigation part is explained well but the mapping tutorial is not there. Can you help me how you did SLAM mapping for the same using this camera?
@robotmania8896
@robotmania8896 Год назад
Hi balaji ravi! Thanks for watching my video! I have used “slam_toolbox” to create a map. In case of this simulation, you have to launch “slam_launch.py”, “depthimage_to_laserscan_node”, “visual_odometry” (refer to “gazebo_sim_launch_vo.py” script). You have to move the robot very slowly to create a map successfully, since the robot loses its position very easily when using only RGBD camera.
@balajibull
@balajibull Год назад
@@robotmania8896 thanks for the reply. I have tried setting up depthimage_to_laserscan_node, but facing issue. how to install the package for foxy and slam toolbox is not publishing a map in my case? And also visual odometry how to use. It would be nice if you could share the project files for SLAM mapping as i can refer and see where I made mistakes
@robotmania8896
@robotmania8896 Год назад
@@balajibull If I remember correctly, if you have installed all packages mentioned in this tutorial, “depthimage_to_laserscan” should be installed automatically. If you are using “slam_toolbox”, you don’t have to make additional packages. Please refer to this tutorial for “slam_toolbox usage. navigation.ros.org/tutorials/docs/navigation2_with_slam.html
@tsegaabnigusse2804
@tsegaabnigusse2804 3 месяца назад
nice video sir can you make video on vslam on a custom gazebo world( using rtabmap or orbslam) pls?
@robotmania8896
@robotmania8896 3 месяца назад
Hi Tsegaab Nigusse! Thanks for watching my video! Thank you for the suggestion, I will consider it!
@nhattran4833
@nhattran4833 Год назад
hello friend, when use rgbd camera in reality, are we recalibration camera or not to get more precise extrinsic parameter. I am using rgbd camera of intel, can you recommand some tools to calibrate this camera to get extrinsic matric
@robotmania8896
@robotmania8896 Год назад
Hi nhattran4833! Thanks for watching my video! If you are using realsense camera, you can get intrinsic parameters using the pyrealsense2 library. For example, like in this command. intr = profile.get_stream(rs.stream.color).as_video_stream_profile().get_intrinsics()
@nhattran4833
@nhattran4833 Год назад
@@robotmania8896 so we can get all of camera calibration parameters based on this library?
@dipsihadiya2125
@dipsihadiya2125 9 месяцев назад
Is this applicable for underwater ? I want to do navigation in underwater is this so ?
@robotmania8896
@robotmania8896 9 месяцев назад
Hi Dipsi Hadiya! Thanks for watching my video! I think it is possible to use visual slam under water. But you should be careful with device choice since light attenuates rapidly in the water.
@valuetradings8766
@valuetradings8766 4 месяца назад
I'm getting a no map received message in ravin
@robotmania8896
@robotmania8896 4 месяца назад
Hi Value Tradings! What is ravin?
@valuetradings8766
@valuetradings8766 4 месяца назад
@@robotmania8896 sorry I meant rviz ...it got autocorrected
@robotmania8896
@robotmania8896 4 месяца назад
@@valuetradings8766 Does this message appear during map creation or during navigation?
@valuetradings8766
@valuetradings8766 4 месяца назад
@@robotmania8896 during map creation
@robotmania8896
@robotmania8896 4 месяца назад
For this tutorial I created a map using slam_toolbox. What tool are you using?
Далее
Making robot navigation easy with Nav2 and ROS!
22:39
Avaz Oxun - 10 yillik yubiley konsert dasturi 2023
2:52:33
Easy SLAM with ROS using slam_toolbox
25:47
Просмотров 126 тыс.
Depth Camera - Computerphile
12:34
Просмотров 247 тыс.
ROS2 Navigation2 Dynamic Object Following Demo
1:08
Просмотров 2,2 тыс.
Open-source SLAM with Intel RealSense depth cameras
27:40
ROS2 SLAM Toolbox Tutorial Mobile Robot Simulation
17:07
SLAM Robot Mapping - Computerphile
11:35
Просмотров 129 тыс.