-1

I am trying to run opencv. I need to display an image in opencv. It is working fine.
I do get the following warning. I need to know what is the meaning of that :

Warning: Unable to read symbols for @executable_path/../Frameworks/OpenCV.framework/Versions/A/OpenCV (file not found).
Warning: Unable to read symbols from "OpenCV" (not yet mapped into memory).

SSteve
  • 10,550
  • 5
  • 46
  • 72

1 Answers1

1

Your question is very vague, so I assume you're using the latest OS X and Xcode?

OpenCV.framework looks like you're using a precompiled version of OpenCV which is pretty old … The best thing to work with OpenCV on OS X Lion is to compile it yourself … Use this guide.

If you have OpenCV up and running you may need this helper to convert your NSImage to an CVMat and vice versa.

Community
  • 1
  • 1
dom
  • 11,894
  • 10
  • 51
  • 74