05-02-2024 11:44 AM
Hello LabVIEW community, I'm planning a project where I aim to measure the volume of an object using stereo vision and 3D processing techniques.
Here is my proposed approach:
I'm reaching out for advice on a few specific points:
Any guidance, advice, or examples on how to approach this process in LabVIEW would be greatly appreciated. Thank you!
Solved! Go to Solution.
05-02-2024 03:02 PM
Do you have a realistic picture of how bad depth information from real world objects look like, when retrieved by passive stereo vision? Even active stereo vision can be bad, e.g. Intel RealSense.
Please share more details about your setup and the object you try measure.
05-02-2024 03:28 PM
@ccp1999 wrote:
Hello LabVIEW community, I'm planning a project where I aim to measure the volume of an object using stereo vision and 3D processing techniques.
...
As very first step to start is Using the Stereo Vision Example. If this technically will work with your images, then half problem is solved. If not, then you should find "third-party" library which will compute acceptable disparity map. Writing such algorithm "from the sratch" may be complicated, based ony my experience from the past.
Once you will get disparity map, then you can continue with OpenCV reprojectImageTo3D. (such functionality is missing in VDM, AFAIK), and after that if point cloud is OK, then volume calculation is relative simple calculation.