Reputation: 43
I have a question.
Does evo 3d get depth map?? (the distance from real world objects to camera)
If it does, can developer use library to get the depth map??
Thanks
Upvotes: 2
Views: 631
Reputation: 59
It doesn't get it by default. You have to compute it by yourself. For that purpose, you can use OpenCV 4 Android and use the stereo matching capability. Check the following links :
For the Idea : http://blog.martinperis.com/2011/08/opencv-stereo-matching.html
From the OpenCV doc : http://docs.opencv.org/java/index.html?org/opencv/calib3d/StereoBM.html
Upvotes: 1