Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generate 3D image from disparity map in opencv

Tags:

opencv

3d

I am trying to get 3D image from two images , I have generated the disparity map . Can anyone please tell me how can I get the 3D image from that disparity image in opencv . Please help me .

Thanks and Regards Somu

like image 713
somnath Chakraborty Avatar asked Nov 03 '22 09:11

somnath Chakraborty


1 Answers

You should use the function reprojectImageTo3D(...). More details are available in OpenCV docs: http://docs.opencv.org/modules/calib3d/doc/camera_calibration_and_3d_reconstruction.html#reprojectimageto3d

like image 91
Alexander Avatar answered Nov 16 '22 14:11

Alexander