mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 12:10:49 +08:00
ab8de8f506
Adding of destructor and placement new constructors for classes wrapped with CV_EXPORTS_W_SIMPLE macro
9 lines
163 B
C++
9 lines
163 B
C++
#ifdef HAVE_OPENCV_STITCHING
|
|
typedef Stitcher::Status Status;
|
|
|
|
template<>
|
|
PyObject* pyopencv_from(const Status& value)
|
|
{
|
|
return PyInt_FromLong(value);
|
|
}
|
|
#endif |