Так что сейчас у меня нет кода, поскольку я не дома ... но я использовал библиотеку boost для python в C ++, чтобы позволить python получить доступ к функции, называемой loadImageIntoMainWindow (string filepath)
в исходном коде C ++ метод вызывает методы opencv, которые импортируются в начало файла, я включил opencv в мой файл Jamroot, а также нашел способ компилировать и ссылаться вручную в командной строке ... в любом случай, когда я запускаю свой файл python, он жалуется, что символы не найдены для первого вызова функции метода opencv ...
Я обновлюсь, как только вернусь домой с C ++, строками компиляции командной строки, Jamroot и файлами python
вот этот джамрут:
# Copyright David Abrahams 2006. Distributed under the Boost
# Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
using python ;
lib libboost_python : : <name>boost_python-mt-py26 ;
# Specify the path to the Boost project. If you move this project,
# adjust this path to refer to the Boost root directory.
use-project boost
: ./ ;
# Set up the project-wide requirements that everything uses the
# boost_python library from the project whose global ID is
# /boost/python.
project
: requirements
<search>/usr
<library>libboost_python
<include>/usr/include/opencv ;
# Declare the three extension modules. You can specify multiple
# source files after the colon separated by spaces.
python-extension uTrackSpheresForPyInterface : uTrackSpheresForPyInterface.cpp ;
# A little "rule" (function) to clean up the syntax of declaring tests
# of these extension modules.
local rule run-test ( test-name : sources + )
{
import testing ;
testing.make-test run-pyd : $(sources) : : $(test-name) ;
}
# Declare test targets
после того, как я бегу bjam --preserve-test-targets
или
g++ -c -g -Wall -fPIC -pipe -DBOOST_PYTHON_MAX_ARITY=20 -I. -I/usr/include/opencv/ - /usr/include/python2.6 `pkg-config --libs opencv` uTrackSpheresForPyInterface.cpp
g++ -shared -o uTrackSpheresForPyInterface.so uTrackSpheresForPyInterface.o -L/usr/lib - python2.6 -lboost_python-mt-py26
Я получаю это:
nathan@innovation:~/Research RIT/openCv$ python uTrackSpheres.py
Traceback (most recent call last):
File "uTrackSpheres.py", line 18, in <module>
import uTrackSpheresForPyInterface
ImportError: /home/nathan/Research RIT/openCv/uTrackSpheresForPyInterface.so: undefined symbol: cvCvtColor
nathan@innovation:~/Research RIT/openCv$
и в файле cpp я делаю немного больше, чем это:
#include <iostream>
using namespace std;
#ifdef _CH_
#pragma package <opencv>
#endif
#ifndef _EiC
#include "cv.h"
#include "highgui.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#endif
#include <boost/python/module.hpp>
#include <boost/python/def.hpp>
int loadImageIntoMainWindow(string imgPath) {
if( (imgLoaded = cvLoadImage(imgPath.c_str(),1)) == 0 )
return 0;
imgMain = cvCreateImage( cvSize(imgLoaded->width, imgLoaded->height), 8, 1 );
cvCvtColor( imgLoaded, imgMain, CV_BGR2GRAY );
cvNamedWindow( charCurrentFilename,CV_WINDOW_AUTOSIZE);
cvSetMouseCallback(charCurrentFilename, on_mouse_imgMain, 0 );
cvShowImage(charCurrentFilename, imgMain);
return 1;
}
BOOST_PYTHON_MODULE(uTrackSpheresForPyInterface)
{
using namespace boost::python;
def("loadImageIntoMainWindow", loadImageIntoMainWindow);
}