0

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.

enter image description here

How can I fix this?

Brad Larson
  • 170,088
  • 45
  • 397
  • 571
Dani
  • 73
  • 1
  • 11

1 Answers1

0

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.

dom
  • 11,894
  • 10
  • 51
  • 74