Using boost.python to import a method with opencv calls but failing due to symbols not being found a
Posted
by nmz787
on Stack Overflow
See other posts from Stack Overflow
or by nmz787
Published on 2010-03-23T19:20:21Z
Indexed on
2010/03/23
19:23 UTC
Read the original article
Hit count: 357
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
© Stack Overflow or respective owner