Cython包装一个opencv项目

时间:2013-12-08 07:04:49

标签: python opencv cython

我写了一个使用OpenCV库的类。这些是我想要向Python公开的方法:

class ACA()
{
    ACA();
    Mat getsegmentation(Mat in);
}

这是我到目前为止为包装器编写的内容。如何在numpy数组和opencv Mat对象之间进行转换?

cdef extern from "aca.h":
    cdef cppclass ACA:
        ACA()
        aca_seg(Mat)

def aca(im):
    pass
    # lev=aca.aca_seg(m)

0 个答案:

没有答案