Skip to content Skip to sidebar Skip to footer

How To Do This Disparity Map In Opencv

paper 'Fast Obstacle Detection Using U-Disparity Maps with Stereo Vision' reference paper: 'Fast Obstacle Detection Using U-Disparity Maps with Stereo Vision' I want to ask can op

Solution 1:

What you are asking is a mobile robotics visual perception related question.

I guess this author made a trick on you as it is not called U disparity

The stereo depth can be computed by opencv stereo matching. If you fail, there could be many reason. you need to post what you have. you can follow this link to get depth map. https://docs.opencv.org/master/dd/d53/tutorial_py_depthmap.html

This right image is done by concatenating depth observation along the vertical plane. It is called V disparity. For normal road scene, most of the background road should be on the same straight line spam diagonally. Anything not on this line can be considered as an obstacle above or below the road surface. When the sensing distance is far, there might be deformation for the line because of stereo uncertainty. This algorithm is designed to detect cases such as negative obstacle(drains, potholes) and positive obstacle( cars humans)

you can find a sample implementation here

https://github.com/thinkbell/v_disparity

If you are Phd candidate, you need to read a lot more paper to know whether some paper is lying on their contribution rather than post question here and hope someone can tell you the answer.

enter image description here

Regards

Dr Yuan Shenghai

Post a Comment for "How To Do This Disparity Map In Opencv"