Using boost.python to import a method with opencv calls but failing due to symbols not being found a
- by nmz787
So I don't have the code right now, as I am not home... but i used the boost library for python in C++ to allow python to access a function called something like loadImageIntoMainWindow(string filepath)
in the C++ source code the method calls opencv methods that are imported at the top of the file, I included opencv in my Jamroot file, and also found a way to compile and link manually on the command line... in either case when I run my python file it complains that the symbols aren't found for the first function call to an opencv method...
I will update as soon as I get home with the C++, the command line compilation lines, the Jamroot, and the python files