I am working on an iOS project using OpenCV. I am trying to create disparity map of an image. While implementing this, Xcode is showing CvStereoBMState
as being an undeclared identifier.
How can I fix this?
I am working on an iOS project using OpenCV. I am trying to create disparity map of an image. While implementing this, Xcode is showing CvStereoBMState
as being an undeclared identifier.
How can I fix this?
Take a look at the docs: CvStereoBMState is the old C-Style, which seems to be unsupported, but you can now use the new C++ interface.
For further information take a look at Camera Calibration and 3D Reconstruction - StereoBM.