-
class NDArrayConverter
: The converter class -
NDArrayConverter::NDArrayConverter()
: Constructor -
cv::Mat NDArrayConverter::toMat(const PyObject* o)
: Convert a NumPy ndarray to acv::Mat
.-
o is the object representing the Python representation of the ndarray.
-
Returns a
cv::Mat
which is the OpenCV representation of o.
-
-
PyObject* NDArrayConverter::toNDArray(const cv::Mat& mat)
: Convert acv::Mat
to a NumPy ndarray.-
mat is the cv::Mat to convert.
-
Returns a
PyObject*
that is the Python representation of an ndarray.
-
examples.cpp
contains
-
An implementation of matrix multiplication
mul()
that takes twondarray
objects, converts them tocv::Mat
, multiplies them and returns the result as anndarray
. -
An image binarization function
binarize()
that takes anndarray
containing a grayscale image and a threshold value, converts the image to acv::Mat
and thresholds(binarizes) it. It then returns the result as andarray
. -
An image display function
display(ndarray)
that just takes any image as anndarray
object and displays it.
All of these functions are callable from Python.
The plumbing(passing of values to and from Python) is handled by Boost::Python.
test.py
contains some testcases that call the aforementioned C++ functions
from Python.
After installing Boost::Python and NumPy(maybe the devel package),
$ make
$ make test
This builds and tests the project. Specifically, it builds the core converter
in conversion.o
and a set of examples in examples.so
, which is a Python
module containing a few examples of using the converter. test.py
contains
a test-suite to test (and demonstrate) the converter.